projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78dd2c4
)
x86/hvm: Perform a user instruction fetch for a FEP in userspace
author
Andrew Cooper
<andrew.cooper3@citrix.com>
Thu, 16 Jun 2016 13:36:44 +0000
(14:36 +0100)
committer
Andrew Cooper
<andrew.cooper3@citrix.com>
Thu, 8 Sep 2016 15:39:46 +0000
(16:39 +0100)
This matches hardware behaviour, and prevents erroneous failures when a guest
has SMEP/SMAP active and issues a FEP from userspace.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/hvm/hvm.c
patch
|
blob
|
history
diff --git
a/xen/arch/x86/hvm/hvm.c
b/xen/arch/x86/hvm/hvm.c
index 89539287d79be14aff4ad01e0da74fd71d0b1276..ca966438cd3a4d1fd99fc831e514b10e37cf1295 100644
(file)
--- a/
xen/arch/x86/hvm/hvm.c
+++ b/
xen/arch/x86/hvm/hvm.c
@@
-3978,6
+3978,8
@@
void hvm_ud_intercept(struct cpu_user_regs *regs)
{
struct vcpu *cur = current;
const struct segment_register *cs = &ctxt.seg_reg[x86_seg_cs];
+ uint32_t walk = (ctxt.seg_reg[x86_seg_ss].attr.fields.dpl == 3)
+ ? PFEC_user_mode : 0;
unsigned long addr;
char sig[5]; /* ud2; .ascii "xen" */
@@
-3987,7
+3989,7
@@
void hvm_ud_intercept(struct cpu_user_regs *regs)
cs->attr.fields.l) ? 64 :
cs->attr.fields.db ? 32 : 16, &addr) &&
(hvm_fetch_from_guest_virt_nofault(sig, addr, sizeof(sig),
-
0
) == HVMCOPY_okay) &&
+
walk
) == HVMCOPY_okay) &&
(memcmp(sig, "\xf\xbxen", sizeof(sig)) == 0) )
{
regs->eip += sizeof(sig);